@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

/*cuadro de imagenes*/
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
}

img {
    max-width: 100%;
}

.Buscar {
    padding: 0px 60px;
    border: 0;
    border-radius: 25px;
    outline: none;
    margin-right: 10px;
    color:  #FFFFFF;
    font-size: 17px;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-image:url(imagenes/09.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 80px 0;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: 0;
    justify-content: space-between;
}

/*Movie tv */
.logo {
    color: #f44dfd;
    font-family: 'Racing Sans One', cursive;
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

/*Barra de menu */
.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #FFFFFF;
    font-weight: 600;
    display: block;
}

.menu .navbar ul li a:hover {
    color: #f44dfd;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header-content {
    display: flex;
}

.header-txt {
    flex-basis: 70%;
}

/*Compra tu pelicula favorita*/
.header-txt h1 {
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Racing Sans One',
}

/*span*/
.header-txt span {
    color: #ffffff;
}

.strong-txt {
    font-size: 18px;
    margin-bottom: 20px;
}

.header-txt p {
    font-size: 16px;
    color: #E0E0E0;
    margin-bottom: 45px;
}

.butons {
    display: flex;
}

.popular {
    padding: 100px 0;
    text-align: center;
}

h2 {
    color: #FFFFFF;
    font-size: 35px;
    margin-bottom: 40px;
    margin-top: 30px;
}


.popular-content {
    display: flex;
    justify-content: space-between;
}

.popular-content img {
    width: 155px;
}

.product-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.product-1 {
    background-color: #2A223A;
}

.product-txt {
    padding: 20px 30px;
}

h3 {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*Color de precio*/
.price p {
    font-size: 17px;
    color:  #ffffff;
}

/* Borde de: comprar */
.btn-2 {
    padding: 3px 20px;
    background-color:  #f44dfd;
    margin-right: 0;
}

.contact {
    padding: 150px 300px;
}

.contact-content {
    background-color: #2A223A;
    text-align: center;
    padding: 50px;
    border-radius: 50px;
}

form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

input {
    padding: 18px 25px;
    background-color: #3F3456;
    border: 0;
    border-radius: 25px;
    outline: none;
    margin-right: 10px;
    color:  #FFFFFF;
    font-size: 17px;
}


::placeholder {
    color: #E0E0E0;
    font-size: 17px;
}

.btn-3 {
    background-color: #f44dfd;
    cursor: pointer;
    margin-right: 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
}

.link ul {
    display: flex;
}

.link ul li > a {
    font-size: 17px;
    color: #FFFFFF;
    margin-right: 20px;
}

.link ul li > a:hover {
    color: #f44dfd;
}

/*redes sociales*/
.q-social {
        align-items: center;
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-top: 15px;
}

/*Espacio de redes*/
.q-social>a {
    margin: 0 15px;
    margin-top: 0px;
    margin-right: 15px;
    margin-bottom: 0px;
    margin-left: 15px;
    padding-bottom: 5px;
}

/*Pie de pagina*/
.copy {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    }
    
    .copy p1 {
    color: #ffff;
    text-align: center;
    }
    .p1 {
    font-size: 1rem;
    margin-top: 10px;
    background-color: #ffff;
    }

@media(max-width:991px) {

    .menu {
        padding: 20px;
    }

    .menu label {
        display: initial;
    }
    
    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        display: none;
    }

    .menu .navbar ul li a:hover {
        color: #1B1726;
    }

    .menu .navbar ul li {
        width: 100%;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    .header {
        min-height: 0vh;
        padding: 80px 30px 50px 30px;
    }

    .header-txt {
        text-align: center;
        flex-basis: 100%;
    }

    .header-txt h1 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .butons {
        justify-content: center;
    }

    .btn-1:last-of-type {
        margin-right: 0;
    }

    .popular {
        display: none;
    }

    .product {
        padding: 30px;
    }

    .product-content {
        grid-template-columns: repeat(1,1fr);
        gap: 30px;
    }

    .product-1 img {
        width: 100%;
    }

    .contact {
        padding: 30px;
    }

    form {
        flex-direction: column;
    }

    input {
        margin: 0 0 20px 0;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .link ul {
        margin-top: 20px;

    }


}